home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ WinXP Tour Balloon.xpl < prev    next >
Text File  |  2004-02-07  |  2KB  |  58 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="2"
  4. "UIPATH 1"="Startup/Shutdown\Startup\Windows NT/2K/XP\60) Windows Launch"
  5. "UIPATH 2"="Program Options\Built in Windows Apps\Windows Tour"
  6. "NAME"="Windows Tour Balloon Popup"
  7. "VERSION"="1.01"
  8. "OSVERSION"="0000011"
  9. "LANGUAGE"="VBScript"
  10. "TEXT 1"="Show Tour Balloon pop-up for all users"
  11. "TEXT 2"="Show Tour Balloon pop-up for current user"
  12. "DESCRIPTION 1"="The first three times a users loggs on, Windows will display a balloon tip in the tray area so the user can start the Windows Tour."
  13. "DESCRIPTION 2"="You can deativate this pop-up here for the current user and all users on this computer. If both items are set, the ALL USERS setting overwrites the setting for the current user."
  14. "AUTHOR"="Xteq Systems"
  15. "CONTACTURL"="http://www.xteq.com/"
  16. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  17. "COMMENT 1"="see http://support.microsoft.com/support/kb/articles/q311/4/89.ASP"
  18.  
  19. sV_All="HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Applets\Tour\RunCount" 'DW. 0=no run
  20. sV_Cur="HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Applets\Tour\RunCount"
  21.  
  22. Sub Plugin_Initialize 
  23.  i=RegReadValue(sV_All)
  24.  if IsEmpty(i)=true or i<>0 then
  25.     SetUIElement 1,true
  26.  end if
  27.  
  28.  i=RegReadValue(sV_Cur)
  29.  if IsEmpty(i)=true or i<>0 then
  30.     SetUIElement 2,true
  31.  end if
  32. End Sub
  33.  
  34.  
  35. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  36.  if GetUIElement(1)=true then
  37.     if RegValueExists(sV_ALL) then Call RegDeleteValue(sV_All)
  38.  else
  39.     Call RegWriteValue(sV_All,0,2)
  40.  end if
  41.  
  42.  if GetUIElement(2)=true then
  43.     if RegValueExists(sV_Cur) then Call RegDeleteValue(sV_Cur)
  44.  else
  45.     Call RegWriteValue(sV_Cur,0,2)
  46.  end if
  47.  
  48.  
  49.  Call Logoff
  50. End Sub
  51.  
  52.  
  53. Sub Plugin_Terminate 
  54. End Sub
  55.  
  56.  
  57.  
  58.